/* General Styles */
section {
  padding: 4rem 0;
  font-family: sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Banner */
.contact-banner {
  background-color: #43da87; /* Prada’s blue background */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px; /* desktop height */
  text-align: center;
  padding: 20px;
}

/* Text Styling */
.contact-content p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 8px;
}

.contact-content h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-banner {
    height: 220px;
  }

  .contact-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .contact-banner {
    height: 180px;
  }

  .contact-content p {
    font-size: 12px;
  }

  .contact-content h2 {
    font-size: 20px;
  }
}

/* 📞 Contact Section */
.contact-section {
  background: #f5f7fa; /* soft off-white */
  padding: 80px 20px;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

/* Heading */
.contact-section h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #111;
  margin-bottom: 10px;
}

/* Underline divider */
.contact-underline {
  width: 60px;
  height: 2px;
  background: #111;
  margin: 0 auto 40px auto;
}

/* Form */
.form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-wrapper input,
.form-wrapper textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border 0.3s ease;
}

.form-wrapper input:focus,
.form-wrapper textarea:focus {
  outline: none;
  border-color: #000;
}

/* Button */
.btn-send {
  padding: 14px;
  background: #111;
  color: #fff;
  font-weight: 600;
  border: none;
  letter-spacing: 2px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-send:hover {
  background: #333;
}

/* Server response message */
.response-message {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  text-align: center;
}

/* Responsiveness */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }

  .contact-section h2 {
    font-size: 18px;
  }

  .form-wrapper input,
  .form-wrapper textarea {
    font-size: 14px;
    padding: 12px 14px;
  }

  .btn-send {
    font-size: 13px;
    padding: 12px;
  }
}
